home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 2: Applications / Linux Cubed Series 2 - Applications.iso / utils / file / logiso.000 / logiso / Utils / config < prev    next >
Encoding:
Text File  |  1995-03-24  |  1.4 KB  |  31 lines

  1.  
  2. # (C) Copyright 1995 by Michael Coulter.  All rights reserved.
  3. # This file is sourced in to define key variables.  Edit this file to
  4. # match your system requirements.
  5. #
  6. # The following variables are defined:
  7. #
  8. # CD_FILES is a file that lists all the inodes and files on the cd-rom.
  9. #     If it doesn't exist, it is created by logiso_install based on
  10. #     MOUNT_PATH and MAP_TO_PATH.  The name should not end with 
  11. #    ".gz".  If a .gz file is found, it will be uncompressed for use
  12. #    and compressed again after use.
  13. # FIND_LINKS a script which finds link files below a given directory.
  14. #    You may need to make a script for your system to prune different
  15. #    directories from the default find_links script.
  16. # ISOFS_UTIL_DIR - the directory containing the logiso utilities and this
  17. #    config file.  It is set first so that it can be used for other 
  18. #    variables.
  19. # MAP_TO_PATH is the path to the directory on the hard disk which mirrors 
  20. #    the cd-rom.  You should start out by creating MAP_TO_PATH as
  21. #    a symbolic link to MOUNT_PATH.  
  22. # MOUNT_PATH is the path to the mount point of the cd-rom.  If it is already
  23. #     set, the current value is preservee.
  24.  
  25. ISOFS_UTIL_DIR="${ISOFS_UTIL_DIR:-/usr/src/linux/fs/isofs/Utils}"
  26.  
  27. CD_FILES="${CD_FILES:-${ISOFS_UTIL_DIR}/cd_files}"
  28. FIND_LINKS="${FIND_LINKS:-${ISOFS_UTIL_DIR}/find_links}"
  29. MAP_TO_PATH="${MAP_TO_PATH:-/system_cd}"
  30. MOUNT_PATH="${MOUNT_PATH:-/cdmnt}"
  31.